home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000321_jaltman2@nyc.rr.com_Sat Jan 26 11:04:05 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  5KB  |  116 lines

  1. Article: 13159 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!howland.erols.net!netnews.com!xfer02.netnews.com!newsfeed1.cidera.com!Cidera!nyccyc01!news-out.nyc.rr.com!typhoon.nyc.rr.com.POSTED!not-for-mail
  3. Message-ID: <3C524EDB.5090009@nyc.rr.com>
  4. From: "Jeffrey Altman [Road Runner]" <jaltman2@nyc.rr.com>
  5. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1
  6. X-Accept-Language: en-us
  7. MIME-Version: 1.0
  8. Newsgroups: comp.protocols.kermit.misc
  9. Subject: Re: Kermit 95 SSH, FTP Client Ready for Beta Testing
  10. References: <a2mob9$i2b$1@watsol.cc.columbia.edu> <a2pl33$h4v$1@samba.rahul.net> <a2pqd8$a0u$1@newsmaster.cc.columbia.edu> <a2s20j$22s$1@samba.rahul.net>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 94
  14. Date: Sat, 26 Jan 2002 06:36:04 GMT
  15. NNTP-Posting-Host: 66.108.140.183
  16. X-Complaints-To: abuse@rr.com
  17. X-Trace: typhoon.nyc.rr.com 1012026964 66.108.140.183 (Sat, 26 Jan 2002 01:36:04 EST)
  18. NNTP-Posting-Date: Sat, 26 Jan 2002 01:36:04 EST
  19. Organization: Road Runner - NYC
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13159
  21.  
  22. FLEAVIUS.EXE is part of an old MIT Kerberos distribution which
  23. included approximately 20 other EXE and DLL files.  If you do
  24. not use Kerberos you did not need to install them.
  25.  
  26. TIMESYNC.EXE is a tool required by users of Kerberos.  Kerberos
  27. requires that all system clocks by loosely synchronized usually
  28. within 5 minutes.  The syntax is:
  29.  
  30.    timesync <hostname>
  31.  
  32. if no host name is provided the program tries to find a time server
  33. using the standard names of 'time' and 'timehost' in the DNS search
  34. path.
  35.  
  36.  
  37. XSEND32.EXE is a tool that was used to create scripts of files to 
  38. transfer prior to the addition of /RECURSIVE transfers in Kermit 95
  39. and C-Kermit.  Here are the old docs.
  40.  
  41. XSEND (stored in the Kermit distribution as MSIXSE)
  42.  
  43. Original author: Author: Mark S. Zinzow <Markz@UIUCVMD.BITNET>, 1988.
  44. Modified by Vace Kundakci & Frank da Cruz, Columbia University, 1989-91.
  45. See source code for detailed edit history.
  46.  
  47. XSEND is a program to generate TAKE (command) files for MS-DOS Kermit 
  48. and FTP
  49. for sending files and directories to a Kermit (or FTP) server over entire
  50. directory trees or disks.  This version uses relative directory names 
  51. without
  52. explicit separators, so it can be used to send directory trees to UNIX 
  53. as well
  54. as to MS-DOS.
  55.  
  56. To send a directory tree from MS-DOS, change directory to the desired
  57. directory.  Then run XSEND redirecting the output with the DOS redirection
  58. symbol ">" (e.g.  "XSEND > takeme").  Before proceeding, look at the command
  59. file and make sure it's doing what you want.  Then establish a connection to
  60. the remote system with Kermit, CD to the directory in which you want to
  61. replicate the DOS files and subdirectories, start the remote Kermit program
  62. and put it in server mode.  Then escape back and TAKE the command file 
  63. on the
  64. PC.
  65.  
  66. Note that the PC sends all the files in all the directories in the same 
  67. mode,
  68. text or binary.  MS-DOS Kermit has no way of switching file mode on a 
  69. per-file
  70. basis.  This does no harm to PC-to-PC transfers, but poses dangers for
  71. PC-to-UNIX transfers.  When using an Xsend command file to transfer a 
  72. mixture
  73. of text and binary files to UNIX, it is best to do the transfer in 
  74. binary mode
  75. and then remove carriage returns from the text files later with the UNIX tr
  76. utility.
  77.  
  78. Xsend accepts the following command-line arguments:
  79.  
  80.      -k[path]: generate kermit commands (default)
  81.      -c[path]: generate copy commands
  82.      -m[path]: generate mkdir commands
  83.      -z[path]: generate del and rmdir commands
  84.      -l[path]: list full names
  85.      -g[path]: generate tftp get commands
  86.      -p[path]: generate tftp put commands
  87.      -h<name>: tftp to/from host
  88.      -f<name>: select files with name
  89.      -v: verbose (applies for -cklz)
  90.  
  91. (End of XSEND.HLP)
  92.  
  93.  
  94. dold@03.usenet.us.com wrote:
  95.  
  96. > Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  97. > : Fleavius is not part of Kermit.  Fleavius is part of MIT Kerberos
  98. > : which up until now we have never distributed as part of Kermit 95.
  99. > I have several files dated 8/5/1999 along with fleavius.  Perhaps it was
  100. > part of the downloadable kermit that I installed on this laptop.
  101. > And the question still remains:
  102. > What files are distributed with kermit, and what do they do?
  103. > xsend32, for instance, is still there, with no documentation.  I'm not sure
  104. > it's needed anymore, but it was handy once upon a time, if you happened to
  105. > know what it did.
  106. > timesync.exe seems to want to do what its name implies, but with no
  107. > documentation, and it complaining that it can't reach the server, it's not
  108. > of much use, and just clutters my disk.
  109.  
  110.